home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PRemovePages.cpp ----------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PRemovePages.html
- *-------------------------------------------------------------------------
- */
-
- #include "PRemovePages.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 4;
-
- PRemovePages::PRemovePages(short nFirstPage, short nLastPage)
- {
- short x[2];
- x[0] = nFirstPage;
- x[1] = nLastPage;
- PCommand command(pm_removepages, x, REQUEST_SIZE);
- }
-
- // end of PRemovePages.cpp
-